home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 045 (1988-02-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 045 (1988-02-15)(Ossowski, Stefan)(DE)(PD).adf / Iff2Pcs / Source / pz.h < prev    next >
C/C++ Source or Header  |  1988-01-20  |  896b  |  38 lines

  1. #include <exec/types.h>
  2. #include <exec/memory.h>
  3. #include <functions.h>
  4. #include <intuition/intuition.h>
  5. #include <graphics/gfxbase.h>
  6. #include <graphics/gfxmacros.h>
  7. #include <devices/timer.h>
  8. #include <libraries/dos.h>
  9. #include <libraries/dosextens.h>
  10. #include <workbench/startup.h>
  11. #include "popmenu.h"
  12. #include "smalliff.h"
  13.  
  14. typedef unsigned char  ubyte;
  15. typedef unsigned int   uint;
  16. typedef unsigned long  ulong;
  17. typedef char           *ptr;
  18. typedef char           *string;
  19.  
  20. #define true  1
  21. #define false 0
  22.  
  23. #define SHOWCMD  1
  24. #define CHECKCMD 2
  25. #define NEWCMD   3   
  26. #define HELPCMD  4
  27. #define QUITCMD  5
  28.  
  29. /* log2 of # of bits that make up the side of a square piece */
  30. #define DIFF_EASY     6
  31. #define DIFF_NORMAL   5
  32. #define DIFF_HARD     4
  33.  
  34. #define COPYRIGHT "IFF2PCS 1.0 (C)1987 Ali T. Ozer, 21-Nov-87, Freely Distributable"
  35. #define PROGNAME  "IFF2PCS 1.0"
  36.  
  37. char *copyright = COPYRIGHT;
  38.